home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010921-20020314 / 000363_fdc@columbia.edu_Mon Feb 11 11:07:35 EST 2002.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  56 lines

  1. Article: 13207 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Lost in a sea of C source...
  6. Date: 11 Feb 2002 11:07:20 -0500
  7. Organization: Columbia University
  8. Lines: 39
  9. Message-ID: <a48q7o$3s5$1@watsol.cc.columbia.edu>
  10. References: <5HR98.5996$3k2.1127802@news20>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1013443642 11382 128.59.39.139 (11 Feb 2002 16:07:22 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 11 Feb 2002 16:07:22 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13207
  16.  
  17. In article <5HR98.5996$3k2.1127802@news20>, Jumpnet <123@jump.net> wrote:
  18. : I am looking over the various aspects of Kermit and am having
  19. : a difficult time getting a sufficient answer.  I have an application
  20. : that is embedded that needs to use Kermit as the method of
  21. : loading programs into a remote host running OS9.  I recently
  22. : went to the Columiba site to see what was available there and
  23. : found a pre-complied version of kermit for OS9 3.0.3.  Imagine
  24. : my suprise when I found it to be nearly 500k in size!  This is
  25. : unacceptable.
  26. :
  27. It does a lot of things, and each thing takes code.  If it does things
  28. that you do not need you can build a smaller version.  See:
  29.  
  30.   http://www.columbia.edu/kermit/ckccfg.html#x6
  31.  
  32. : The "other" end needs to be either a laptop or
  33. : a PDA device such as Palm, IPaq, etc...  What I need, and I
  34. : don't think this is asking too much, is a way to make a small
  35. : implementation of Kermit for BOTH ends to do ONE thing,
  36. : namely a file transfer to the target machine, no scripting, no
  37. : terminal emulation, TCP/IP...just the file transfer over a serial
  38. : connection, probably async, 9600 baud N-8-1.
  39. :
  40. If one end only needs to execute the protocol over its standard i/o,
  41. you might be able to use G-Kermit instead of C-Kermit:
  42.  
  43.   http://www.columbia.edu/kermit/gkermit.html
  44.  
  45. But one of the partners also needs all the code to make and manage
  46. the connection (serial, network, whatever) and that code does not
  47. necessarily come cheap.
  48.  
  49. Of course we would love to be able to supply custom versions of Kermit
  50. that are ideally suited for every possible application on every existing
  51. platform, but nobody is paying us to do that.  Therefore we try to make
  52. the best use of our time by supplying general-purpose, portable versions
  53. that are highly configurable both at runtime and compile time.
  54.  
  55. - Frank
  56.